home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / Bowers Development / AppMaker 2.0b5 / Examples / TCL / AMReminder / zAdd.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-19  |  1.0 KB  |  44 lines  |  [TEXT/KAHL]

  1. /* zAdd.h -- dialog class */
  2. /* Created 01/01/95 12:01 PM by AppMaker */
  3.  
  4. #pragma once
  5.  
  6. #include <CAMDialogDirector.h>
  7.  
  8. class CAMButton;
  9. class CPicture;
  10. class CAMStaticText;
  11. class CAMDialogText;
  12. class CLabeledGroup;
  13. class CAMRadioControl;
  14. class CAMCheckBox;
  15. class CAMPopupPane;
  16.  
  17. /*----------*/
  18. class ZAdd : public CAMDialogDirector {
  19. public:
  20.     CAMButton*            itsOKButton;
  21.     CAMButton*            itsCancelButton;
  22.     CPicture*            itsLogoPict;
  23.     CAMStaticText*        itsAddReminderForLabel;
  24.     CAMStaticText*        itsDateLabel;
  25.     CAMDialogText*        itsDateField;
  26.     CAMStaticText*        itsTimeLabel;
  27.     CAMDialogText*        itsTimeField;
  28.     CLabeledGroup*        itsAmPmGroup;
  29.     CAMRadioControl*    itsAMRadio;
  30.     CAMRadioControl*    itsPMRadio;
  31.     CAMStaticText*        itsMessageLabel;
  32.     CAMDialogText*        itsMessageField;
  33.     CAMStaticText*        itsWhenRemindingLabel;
  34.     CAMCheckBox*        itsDisplayIconCheck;
  35.     CAMCheckBox*        itsDisplayAlertCheck;
  36.     CAMCheckBox*        itsPlaySoundCheck;
  37.     CAMPopupPane*        itsSoundPopup;
  38.  
  39.     virtual void    IZAdd    (CDirectorOwner    *aSupervisor);
  40.  
  41.     void    UpdateMenus    (void);                            // is override
  42.  
  43. }; /* ZAdd */
  44.